home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / libs / readline / ansi_stdlib.h next >
C/C++ Source or Header  |  1995-09-22  |  1KB  |  50 lines

  1. /* ansi_stdlib.h -- An ANSI Standard stdlib.h. */
  2. /* A minimal stdlib.h containing extern declarations for those functions
  3.    that bash uses. */
  4.  
  5. /* Copyright (C) 1993 Free Software Foundation, Inc.
  6.  
  7.    This file is part of GNU Bash, the Bourne Again SHell.
  8.  
  9.    Bash is free software; you can redistribute it and/or modify it under
  10.    the terms of the GNU General Public License as published by the Free
  11.    Software Foundation; either version 2, or (at your option) any later
  12.    version.
  13.  
  14.    Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  15.    WARRANTY; without even the implied warranty of MERCHANTABILITY or
  16.    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  17.    for more details.
  18.  
  19.    You should have received a copy of the GNU General Public License along
  20.    with Bash; see the file COPYING.  If not, write to the Free Software
  21.    Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
  22.  
  23. #if !defined (_STDLIB_H_)
  24. #define    _STDLIB_H_ 1
  25.  
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29.  
  30. /* String conversion functions. */
  31. extern int atoi ();
  32. extern long int atol ();
  33.  
  34. /* Memory allocation functions. */
  35. extern char *malloc ();
  36. extern char *realloc ();
  37. extern void free ();
  38.  
  39. /* Other miscellaneous functions. */
  40. extern void abort ();
  41. extern void exit ();
  42. extern char *getenv ();
  43. extern void qsort ();
  44.  
  45. #ifdef __cplusplus
  46. }
  47. #endif
  48.  
  49. #endif /* _STDLIB_H  */
  50.